home *** CD-ROM | disk | FTP | other *** search
/ Disc to the Future 2 / Disc to the Future Part II Programmer's Reference (Wayzata Technology)(6013)(1992).bin / MAC / THINKC / TCL1 / __MANDEL / MANDEL.C < prev   
C/C++ Source or Header  |  1992-05-31  |  343b  |  20 lines

  1. /******************************************************************************
  2.   Mandel.c
  3. ******************************************************************************/
  4.  
  5.  
  6. #include "CMandelApp.h"
  7.  
  8.  
  9. void main()
  10.  
  11. {
  12.     CMandelApp    *MandelApp;                    
  13.  
  14.     MandelApp = new CMandelApp;
  15.     
  16.     MandelApp->IMandelApp();
  17.     MandelApp->Run();
  18.     MandelApp->Exit();
  19. }
  20.